Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 29, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.55.0 -> 1.55.1 age confidence
@rsbuild/core (source) ~1.5.11 -> ~1.5.12 age confidence
@rsbuild/core (source) ~1.5.11 -> ~1.5.12 age confidence
@rsbuild/plugin-typed-css-modules ^1.1.0 -> ^1.1.1 age confidence
@rspress/core (source) 2.0.0-beta.33 -> 2.0.0-beta.34 age confidence
@rspress/plugin-algolia (source) 2.0.0-beta.33 -> 2.0.0-beta.34 age confidence
@rspress/plugin-llms (source) 2.0.0-beta.33 -> 2.0.0-beta.34 age confidence
@rspress/plugin-rss (source) 2.0.0-beta.33 -> 2.0.0-beta.34 age confidence
@rspress/plugin-sitemap (source) 2.0.0-beta.33 -> 2.0.0-beta.34 age confidence
@rstest/core (source) ^0.4.1 -> ^0.5.0 age confidence
@storybook/addon-docs (source) ^9.1.7 -> ^9.1.8 age confidence
@storybook/addon-docs (source) ^9.1.7 -> ^9.1.8 age confidence
@storybook/addon-onboarding (source) ^9.1.7 -> ^9.1.8 age confidence
@storybook/react (source) ^9.1.7 -> ^9.1.8 age confidence
@storybook/vue3 (source) ^9.1.7 -> ^9.1.8 age confidence
@types/react (source) ^19.1.13 -> ^19.1.15 age confidence
@typescript/native-preview (source) 7.0.0-dev.20250921.1 -> 7.0.0-dev.20250928.1 age confidence
memfs ^4.43.0 -> ^4.47.0 age confidence
rslib (source) 0.13.3 -> 0.14.0 age confidence
storybook (source) ^9.1.7 -> ^9.1.8 age confidence
storybook-addon-rslib (source) ^2.1.1 -> ^2.1.2 age confidence
storybook-react-rsbuild (source) ^2.1.1 -> ^2.1.2 age confidence
storybook-vue3-rsbuild (source) ^2.1.1 -> ^2.1.2 age confidence
tsx (source) ^4.20.5 -> ^4.20.6 age confidence
vue (source) ^3.5.21 -> ^3.5.22 age confidence
vue-tsc (source) ^3.0.7 -> ^3.1.0 age confidence
zx (source) ^8.8.3 -> ^8.8.4 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.55.1

Compare Source

Highlights

#​37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#​37147 - [Regression]: Internal error: step id not found.
#​37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#​37137 - Revert "fix(a11y): track inert elements as hidden".

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139
web-infra-dev/rsbuild (@​rsbuild/core)

v1.5.12

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rsbuild@v1.5.11...v1.5.12

rspack-contrib/rsbuild-plugin-typed-css-modules (@​rsbuild/plugin-typed-css-modules)

v1.1.1

Compare Source

What's Changed

Full Changelog: rspack-contrib/rsbuild-plugin-typed-css-modules@v1.1.0...v1.1.1

web-infra-dev/rspress (@​rspress/core)

v2.0.0-beta.34

Compare Source

Highlights ✨
💄 Upgrade to docsearch@4 within @​rspress/plugin-algolia

related PR: #​2620

This will improve Rspress's UI, and you can use new docsearch features such as askAi.

DocSearch v4 provides a significant upgrade over previous versions, offering enhanced accessibility, responsiveness, and an improved search experience for your documentation. Built on Algolia Autocomplete, DocSearch v4 ensures a seamless integration trusted by leading documentation sites worldwide.

ref: https://docsearch.algolia.com/docs/migrating-from-v3

image image
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.33...v2.0.0-beta.34

web-infra-dev/rstest (@​rstest/core)

v0.5.0

Compare Source

What's Changed
Breaking Changes
Merge exclude values by default

Change the default behavior of the exclude configuration from override to merge, which will be more intuitive for most people. This helps avoid matching a large number of tests in node_modules because node_modules was not added to the exclude list.

before:

import { defineConfig } from '@​rstest/core';

export default defineConfig({
   exclude: ['**/some-dirs/**', '**/node_modules/**', '**/dist/**', '**/.{idea,git,cache,output,temp}/**']
});

after:

import { defineConfig } from '@​rstest/core';

export default defineConfig({
   exclude: ['**/some-dirs/**']
});

If you want to override the default exclude configuration, you can set override to true.

import { defineConfig } from '@​rstest/core';

export default defineConfig({
  exclude: {
    patterns: ['**/node_modules/**'],
    override: true,
  },
});
New Features 🎉
  • feat!: merge exclude values by default by @​9aoy in #​588
  • feat(coverage): support coverage.include by @​9aoy in #​585
  • feat(coverage): coverage.includes works in projects by @​9aoy in #​593
  • feat(coverage): support checking coverage threshold for glob files by @​9aoy in #​589
  • feat(coverage): support check coverage threshold for per file by @​9aoy in #​590
  • feat: support use <rootDir> in path-based configuration settings by @​9aoy in #​583
  • feat: stubEnv support import.meta.env by @​9aoy in #​594
Bug Fixes 🐞
  • fix(coverage): should not watch coverage reportsDirectory by @​9aoy in #​586
  • fix(coverage): coverage.exclude should exclude path correctly by @​9aoy in #​592
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.4.1...v0.5.0

storybookjs/storybook (@​storybook/addon-docs)

v9.1.8

Compare Source

storybookjs/storybook (@​storybook/addon-onboarding)

v9.1.8

Compare Source

9.1.8

microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20250928.1

Compare Source

v7.0.0-dev.20250927.1

Compare Source

v7.0.0-dev.20250926.1

Compare Source

v7.0.0-dev.20250925.1

Compare Source

v7.0.0-dev.20250924.1

Compare Source

v7.0.0-dev.20250923.1

Compare Source

v7.0.0-dev.20250922.1

Compare Source

streamich/memfs (memfs)

v4.47.0

Compare Source

Features
  • align openAsBlob errors with Node.js behavior (1f1afb7)

4.46.1 (2025-09-25)

Bug Fixes
  • handle Uint8Array byteOffset and byteLength in readSync (bba8729)

v4.46.1

Compare Source

Features
  • align openAsBlob errors with Node.js behavior (1f1afb7)

4.46.1 (2025-09-25)

Bug Fixes
  • handle Uint8Array byteOffset and byteLength in readSync (bba8729)

v4.46.0

Compare Source

Features
  • align openAsBlob errors with Node.js behavior (1f1afb7)

4.46.1 (2025-09-25)

Bug Fixes
  • handle Uint8Array byteOffset and byteLength in readSync (bba8729)

v4.45.0

Compare Source

Bug Fixes
  • 🐛 inline Buffer and URL (0b6c43a)
Features
  • inline fs.ts types to remove node:fs dependency (22886c3)

v4.44.0

Compare Source

Bug Fixes
  • 🐛 remove dependence on "assert" module (c7c6f6c)
Features
  • move internal files to vendor/node/internal and cleanup unused error codes (3a9ee47)

4.43.1 (2025-09-24)

Bug Fixes
  • Use cross-platform dirname instead of posix.dirname (7a51ac3), closes #​1193

v4.43.1

Compare Source

Bug Fixes
  • 🐛 remove dependence on "assert" module (c7c6f6c)
Features
  • move internal files to vendor/node/internal and cleanup unused error codes (3a9ee47)

4.43.1 (2025-09-24)

Bug Fixes
  • Use cross-platform dirname instead of posix.dirname (7a51ac3), closes #​1193
web-infra-dev/rslib (rslib)

v0.14.0

Compare Source

Breaking changes 🚨
Config loading

Currently, configuration files are loaded with jiti, which relies on Babel. This approach is relatively slow (at least ~70ms slower compared to native).

In Rslib v0.13.3, we introduced a new CLI option --config-loader native, which uses Node.js's native loader. This approach offers better performance and stricter behavior, but comes with certain requirements:

  • Requires Node v22.18+ with built-in TypeScript support
  • Import specifiers must include file extensions
  • When using TypeScript, package.json must set "type": "module"
  • Importing JSON requires with { type: "json" }

In Rslib v0.14.0, we adjust the default configuration loading behavior. The new default is now --config-loader auto, which:

  • First attempts to use the faster native loader
  • If that fails, it gracefully falls back to jiti for broader compatibility

This change to 'auto' as the default is part of our long-term plan to transition config loading from jiti to Node.js native.

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: v0.13.3...v0.14.0

rspack-contrib/storybook-rsbuild (storybook-addon-rslib)

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
privatenumber/tsx (tsx)

v4.20.6

Compare Source

Bug Fixes
  • properly hide relaySignal from process.listeners() (#​741) (710a424)

This release is also available on:

vuejs/core (vue)

v3.5.22

Compare Source

Bug Fixes
Features
  • custom-element: allow specifying additional options for shadowRoot in custom elements (#​12965) (47e628d), closes #​12964
Reverts
  • Revert "fix(hmr): prevent VUE_HMR_RUNTIME from being overwritten by vue runtime in 3rd-party libraries" (#​13925) (6b68f72), closes #​13925
vuejs/language-tools (vue-tsc)

v3.1.0

Compare Source

Performance
Other Changes

v3.0.8

Compare Source

Features
  • feat(vscode): introduce vue.server.path setting (#​5647)
Bug Fixes
  • fix(language-core): initialize properties of VueVirtualCode in constructor (#​5635) - Thanks to @​KazariEX!
  • fix(vscode): flatten reactivity visualization decorators (#​5642) - Thanks to @​KazariEX!
  • fix(vscode): normalize reactivity visualization ranges
  • fix(vscode): patch typescriptServerPlugin languages without FS hack
  • fix(language-service): do not provide semantic tokens and document highlights for non-file scheme files (#​5653) - Thanks to @​KazariEX!
Performance
  • perf(typescript-plugin): redo single-file language service for reactivity visualization (#​5652)
Other Changes
  • refactor(typescript-plugin): externalize reactivity analysis logic (#​5645) - Thanks to @​KazariEX!
google/zx (zx)

v8.8.4: — Flange Coupling

Compare Source

It's time. This release updates zx internals to make the ps API and related methods ProcessPromise.kill(), kill() work on Windows systems without wmic.
#​1344 webpod/ps#15

  1. WMIC will be missing in Windows 11 25H2 (kernel >= 26000)
  2. The windows-latest label in GitHub Actions will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025 and finishing by September 30, 2025.

https://github.blog/changelog/2025-07-31-github-actions-new-apis-and-windows-latest-migration-notice/#windows-latest-image-label-migration


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Sep 29, 2025

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit 38e967b
🔍 Latest deploy log https://app.netlify.com/projects/rslib/deploys/68d9e3e6649a55000858ea9d
😎 Deploy Preview https://deploy-preview-1253--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@Timeless0911 Timeless0911 enabled auto-merge (squash) September 29, 2025 03:35
@Timeless0911 Timeless0911 merged commit 1946333 into main Sep 29, 2025
14 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-non-major branch September 29, 2025 03:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant